home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / emcs1857 / 1857sr~1.zoo / src / process.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-02  |  67.1 KB  |  2,530 lines

  1. /* Asynchronous subprocess control for GNU Emacs.
  2.    Copyright (C) 1985, 1986, 1987, 1988, 1990, 1991
  3.             Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU Emacs.
  6.  
  7. GNU Emacs is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU Emacs is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU Emacs; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. /* Modified 1990 for 8-bit character support by Howard Gayle.
  23.  *  See chartab.c for details. */
  24.  
  25.  
  26. #include <signal.h>
  27.  
  28. #include "config.h"
  29.  
  30. #ifdef subprocesses
  31. /* The entire file is within this conditional */
  32.  
  33. #include <stdio.h>
  34. #include <errno.h>
  35. #include <setjmp.h>
  36. #include <sys/types.h>        /* some typedefs are used in sys/file.h */
  37. #include <sys/file.h>
  38. #include <sys/stat.h>
  39.  
  40. #ifdef HAVE_SOCKETS    /* TCP connection support, if kernel can do it */
  41. #include <sys/socket.h>
  42. #include <netdb.h>
  43. #include <netinet/in.h>
  44. #endif /* HAVE_SOCKETS */
  45.  
  46. #if defined(BSD) || defined(STRIDE)
  47. #include <sys/ioctl.h>
  48. #if !defined (O_NDELAY) && defined (HAVE_PTYS)
  49. #include <fcntl.h>
  50. #endif /* HAVE_PTYS and no O_NDELAY */
  51. #endif /* BSD or STRIDE */
  52. #ifdef USG
  53. #include <termio.h>
  54. #include <fcntl.h>
  55. #endif /* USG */
  56.  
  57. #ifdef NEED_BSDTTY
  58. #include <sys/bsdtty.h>
  59. #endif
  60.  
  61. #ifdef HPUX
  62. #undef TIOCGPGRP
  63. #endif
  64.  
  65. #ifdef IRIS
  66. #include <sys/sysmacros.h>    /* for "minor" */
  67. #include <sys/time.h>
  68. #else
  69. #ifdef UNIPLUS
  70. #include <sys/time.h>
  71.  
  72. #else /* not IRIS, not UNIPLUS */
  73. #ifdef HAVE_TIMEVAL
  74. /* _h_BSDTYPES is checked because on ISC unix, socket.h includes
  75.    both time.h and sys/time.h, and the latter file is protected
  76.    from repeated inclusion.  */
  77. #if defined(USG) && !defined(AIX) && !defined(_h_BSDTYPES) && !defined(USG_SYS_TIME)
  78. #include <time.h>
  79. #else /* AIX or USG_SYS_TIME, or not USG */
  80. #include <sys/time.h>
  81. #endif /* AIX or USG_SYS_TIME, or not USG */
  82. #endif /* HAVE_TIMEVAL */
  83.  
  84. #endif /* not UNIPLUS */
  85. #endif /* not IRIS */
  86.  
  87. #if defined (HPUX) && defined (HAVE_PTYS)
  88. #include <sys/ptyio.h>
  89. #endif
  90.   
  91. #ifdef AIX
  92. #include <sys/pty.h>
  93. #include <unistd.h>
  94. #endif /* AIX */
  95.  
  96. #ifdef SYSV_PTYS
  97. #include <sys/tty.h>
  98. #include <sys/pty.h>
  99. #endif
  100.  
  101. #undef NULL
  102. #include "lisp.h"
  103. #include "window.h"
  104. #include "buffer.h"
  105. #include "process.h"
  106. #include "termhooks.h"
  107. #include "termopts.h"
  108. #include "transtab.h"
  109. #include "commands.h"
  110.  
  111. Lisp_Object Qrun, Qstop, Qsignal, Qexit, Qopen, Qclosed;
  112.  
  113. /* a process object is a network connection when its childp field is neither
  114.    Qt nor Qnil but is instead a string (name of foreign host we
  115.    are connected to + name of port we are connected to) */
  116.  
  117. #ifdef HAVE_SOCKETS
  118. #define NETCONN_P(p) (XGCTYPE (XPROCESS (p)->childp) == Lisp_String)
  119. #else
  120. #define NETCONN_P(p) 0
  121. #endif /* HAVE_SOCKETS */
  122.  
  123. /* Define SIGCHLD as an alias for SIGCLD.  There are many conditionals
  124.    testing SIGCHLD.  */
  125.  
  126. #if !defined (SIGCHLD) && defined (SIGCLD)
  127. #define SIGCHLD SIGCLD
  128. #endif /* SIGCLD */
  129.  
  130. /* Define the structure that the wait system call stores.
  131.    On many systems, there is a structure defined for this.
  132.    But on vanilla-ish USG systems there is not.  */
  133.  
  134. #ifndef WAITTYPE
  135. #if !defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)
  136. #define WAITTYPE int
  137. #define WIFSTOPPED(w) ((w&0377) == 0177)
  138. #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
  139. #define WIFEXITED(w) ((w&0377) == 0)
  140. #define WRETCODE(w) (w >> 8)
  141. #define WSTOPSIG(w) (w >> 8)
  142. #define WCOREDUMP(w) ((w&0200) != 0)
  143. #define WTERMSIG(w) (w & 0377)
  144. #else
  145. #ifdef BSD4_1
  146. #include <wait.h>
  147. #else
  148. #include <sys/wait.h>
  149. #endif /* not BSD 4.1 */
  150.  
  151. #define WAITTYPE union wait
  152. #define WRETCODE(w) w.w_retcode
  153. #define WCOREDUMP(w) w.w_coredump
  154.  
  155. #ifdef HPUX
  156. /* HPUX version 7 has broken definitions of these.  */
  157. #undef WTERMSIG
  158. #undef WSTOPSIG
  159. #undef WIFSTOPPED
  160. #undef WIFSIGNALED
  161. #undef WIFEXITED
  162. #endif
  163.  
  164. #ifndef WTERMSIG
  165. #define WTERMSIG(w) w.w_termsig
  166. #endif
  167. #ifndef WSTOPSIG
  168. #define WSTOPSIG(w) w.w_stopsig
  169. #endif
  170. #ifndef WIFSTOPPED
  171. #define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
  172. #endif
  173. #ifndef WIFSIGNALED
  174. #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
  175. #endif
  176. #ifndef WIFEXITED
  177. #define WIFEXITED(w) (WTERMSIG (w) == 0)
  178. #endif
  179. #endif /* BSD or UNIPLUS or STRIDE */
  180. #endif /* no WAITTYPE */
  181.  
  182. extern errno;
  183. extern sys_nerr;
  184. extern char *sys_errlist[];
  185.  
  186. #ifndef BSD4_1
  187. extern char *sys_siglist[];
  188. #else
  189. char *sys_siglist[] =
  190.   {
  191.     "bum signal!!",
  192.     "hangup",
  193.     "interrupt",
  194.     "quit",
  195.     "illegal instruction",
  196.     "trace trap",
  197.     "iot instruction",
  198.     "emt instruction",
  199.     "floating point exception",
  200.     "kill",
  201.     "bus error",
  202.     "segmentation violation",
  203.     "bad argument to system call",
  204.     "write on a pipe with no one to read it",
  205.     "alarm clock",
  206.     "software termination signal from kill",
  207.     "status signal",
  208.     "sendable stop signal not from tty",
  209.     "stop signal from tty",
  210.     "continue a stopped process",
  211.     "child status has changed",
  212.     "background read attempted from control tty",
  213.     "background write attempted from control tty",
  214.     "input record available at control tty",
  215.     "exceeded CPU time limit",
  216.     "exceeded file size limit"
  217.     };
  218. #endif
  219.  
  220. #ifdef vipc
  221.  
  222. #include "vipc.h"
  223. extern int comm_server;
  224. extern int net_listen_address;
  225. #endif /* vipc */
  226.  
  227. /* t means use pty, nil means use a pipe,
  228.    maybe other values to come.  */
  229. Lisp_Object Vprocess_connection_type;
  230.  
  231. #ifdef SKTPAIR
  232. #ifndef HAVE_SOCKETS
  233. #include <sys/socket.h>
  234. #endif
  235. #endif /* SKTPAIR */
  236.  
  237. /* Number of events of change of status of a process.  */
  238. int process_tick;
  239.  
  240. /* Number of events for which the user or sentinel has been notified.  */
  241. int update_tick;
  242.  
  243. int delete_exited_processes;
  244.  
  245. #ifdef FD_SET
  246. /* We could get this from param.h, but better not to depend on finding that.
  247.    And better not to risk that it might define other symbols used in this
  248.    file.  */
  249. #define MAXDESC 64
  250. #define SELECT_TYPE fd_set
  251. #else /* no FD_SET */
  252. #define MAXDESC 32
  253. #define SELECT_TYPE int
  254.  
  255. /* Define the macros to access a single-int bitmap of descriptors.  */
  256. #define FD_SET(n, p) (*(p) |= (1 << (n)))
  257. #define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
  258. #define FD_ISSET(n, p) (*(p) & (1 << (n)))
  259. #define FD_ZERO(p) (*(p) = 0)
  260. #endif /* no FD_SET */
  261.  
  262. /* Mask of bits indicating the descriptors that we wait for input on */
  263.  
  264. SELECT_TYPE input_wait_mask;
  265.  
  266. /* Indexed by descriptor, gives the process (if any) for that descriptor */
  267. Lisp_Object chan_process[MAXDESC];
  268.  
  269. /* Alist of elements (NAME . PROCESS) */
  270. Lisp_Object Vprocess_alist;
  271.  
  272. Lisp_Object Qprocessp;
  273.  
  274. Lisp_Object get_process ();
  275.  
  276. /* Buffered-ahead input char from process, indexed by channel.
  277.    -1 means empty (no char is buffered).
  278.    Used on sys V where the only way to tell if there is any
  279.    output from the process is to read at least one char.
  280.    Always -1 on systems that support FIONREAD.  */
  281.  
  282. int proc_buffered_char[MAXDESC];
  283.  
  284. /* These variables hold the filter about to be run, and its args,
  285.    between read_process_output and run_filter.
  286.    Also used in exec_sentinel for sentinels.  */
  287. Lisp_Object this_filter;
  288. Lisp_Object filter_process, filter_string;
  289.  
  290. /* Compute the Lisp form of the process status, p->status,
  291.    from the numeric status that was returned by `wait'.  */
  292.  
  293. update_status (p)
  294.      struct Lisp_Process *p;
  295. {
  296.   union { int i; WAITTYPE wt; } u;
  297.   u.i = XFASTINT (p->raw_status_low) + (XFASTINT (p->raw_status_high) << 16);
  298.   p->status = status_convert (u.wt);
  299.   p->raw_status_low = Qnil;
  300.   p->raw_status_high = Qnil;
  301. }
  302.  
  303. /* Convert a process status word in Unix format
  304.    to the list that we use internally.  */
  305.  
  306. Lisp_Object
  307. status_convert (w)
  308.      WAITTYPE w;
  309. {
  310.   if (WIFSTOPPED (w))
  311.     return Fcons (Qstop, Fcons (make_number (WSTOPSIG (w)), Qnil));
  312.   else if (WIFEXITED (w))
  313.     return Fcons (Qexit, Fcons (make_number (WRETCODE (w)),
  314.                 WCOREDUMP (w) ? Qt : Qnil));
  315.   else if (WIFSIGNALED (w))
  316.     return Fcons (Qsignal, Fcons (make_number (WTERMSIG (w)),
  317.                   WCOREDUMP (w) ? Qt : Qnil));
  318.   else
  319.     return Qrun;
  320. }
  321.  
  322. /* Given a status-list, extract the three pieces of information
  323.    and store them individually through the three pointers.  */
  324.  
  325. void
  326. decode_status (l, symbol, code, coredump)
  327.      Lisp_Object l;
  328.      Lisp_Object *symbol;
  329.      int *code;
  330.      int *coredump;
  331. {
  332.   Lisp_Object tem;
  333.  
  334.   if (XTYPE (l) == Lisp_Symbol)
  335.     {
  336.       *symbol = l;
  337.       *code = 0;
  338.       *coredump = 0;
  339.     }
  340.   else
  341.     {
  342.       *symbol = XCONS (l)->car;
  343.       tem = XCONS (l)->cdr;
  344.       *code = XFASTINT (XCONS (tem)->car);
  345.       tem = XFASTINT (XCONS (tem)->cdr);
  346.       *coredump = !NULL (tem);
  347.     }
  348. }
  349.  
  350. /* Return a string describing a process status list.  */
  351.  
  352. Lisp_Object 
  353. status_message (status)
  354.      Lisp_Object status;
  355. {
  356.   Lisp_Object symbol;
  357.   int code, coredump;
  358.   Lisp_Object string, string2;
  359.  
  360.   decode_status (status, &symbol, &code, &coredump);
  361.  
  362.   if (EQ (symbol, Qsignal) || EQ (symbol, Qstop))
  363.     {
  364.       string = build_string (code < NSIG ? sys_siglist[code] : "unknown");
  365.       string2 = build_string (coredump ? " (core dumped)\n" : "\n");
  366.       XSTRING (string)->data[0] = DOWNCASE (XSTRING (string)->data[0]);
  367.       return concat2 (string, string2);
  368.     }
  369.   else if (EQ (symbol, Qexit))
  370.     {
  371.       if (code == 0)
  372.     return build_string ("finished\n");
  373.       string = Fint_to_string (make_number (code));
  374.       string2 = build_string (coredump ? " (core dumped)\n" : "\n");
  375.       return concat2 (build_string ("exited abnormally with code "),
  376.               concat2 (string, string2));
  377.     }
  378.   else
  379.     return Fcopy_sequence (Fsymbol_name (symbol));
  380. }
  381.  
  382. #ifdef HAVE_PTYS
  383.  
  384. /* Open an available pty, returning a file descriptor.
  385.    Return -1 on failure.
  386.    The file name of the terminal corresponding to the pty
  387.    is left in the variable pty_name.  */
  388.  
  389. char pty_name[24];
  390.  
  391. int
  392. allocate_pty ()
  393. {
  394.   struct stat stb;
  395.   register c, i;
  396.   int fd;
  397.  
  398. #ifdef PTY_ITERATION
  399.   PTY_ITERATION
  400. #else
  401.   for (c = FIRST_PTY_LETTER; c <= 'z'; c++)
  402.     for (i = 0; i < 16; i++)
  403. #endif
  404.       {
  405. #ifdef PTY_NAME_SPRINTF
  406.     PTY_NAME_SPRINTF
  407. #else
  408. #ifdef HPUX
  409.     sprintf (pty_name, "/dev/ptym/pty%c%x", c, i);
  410. #else
  411. #ifdef RTU
  412.     sprintf (pty_name, "/dev/pty%x", i);
  413. #else
  414.     sprintf (pty_name, "/dev/pty%c%x", c, i);
  415. #endif /* not RTU */
  416. #endif /* not HPUX */
  417. #endif /* no PTY_NAME_SPRINTF */
  418.  
  419. #ifndef IRIS
  420.     if (stat (pty_name, &stb) < 0)
  421.       return -1;
  422. #ifdef O_NONBLOCK
  423.     fd = open (pty_name, O_RDWR | O_NONBLOCK, 0);
  424. #else
  425.     fd = open (pty_name, O_RDWR | O_NDELAY, 0);
  426. #endif
  427. #else /* Unusual IRIS code */
  428.      fd = open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
  429.      if (fd < 0)
  430.        return -1;
  431.     if (fstat (fd, &stb) < 0)
  432.       return -1;
  433. #endif /* IRIS */
  434.  
  435.     if (fd >= 0)
  436.       {
  437.         /* check to make certain that both sides are available
  438.            this avoids a nasty yet stupid bug in rlogins */
  439. #ifdef PTY_TTY_NAME_SPRINTF
  440.         PTY_TTY_NAME_SPRINTF
  441. #else
  442.         /* In version 19, make these special cases use the macro above.  */
  443. #ifdef HPUX
  444.             sprintf (pty_name, "/dev/pty/tty%c%x", c, i);
  445. #else
  446. #ifdef RTU
  447.             sprintf (pty_name, "/dev/ttyp%x", i);
  448. #else
  449. #ifdef IRIS
  450.          sprintf (pty_name, "/dev/ttyq%d", minor (stb.st_rdev));
  451. #else
  452.             sprintf (pty_name, "/dev/tty%c%x", c, i);
  453. #endif /* not IRIS */
  454. #endif /* not RTU */
  455. #endif /* not HPUX */
  456. #endif /* no PTY_TTY_NAME_SPRINTF */
  457. #ifndef UNIPLUS
  458.         if (access (pty_name, 6) != 0)
  459.           {
  460.         close (fd);
  461. #ifndef IRIS
  462.         continue;
  463. #else
  464.         return -1;
  465. #endif /* IRIS */
  466.           }
  467. #endif /* not UNIPLUS */
  468.         setup_pty (fd);
  469.         return fd;
  470.       }
  471.       }
  472.   return -1;
  473. }
  474. #endif /* HAVE_PTYS */
  475.  
  476. Lisp_Object
  477. make_process (name)
  478.      Lisp_Object name;
  479. {
  480.   register Lisp_Object val, tem, name1;
  481.   register struct Lisp_Process *p;
  482.   char suffix[10];
  483.   register int i;
  484.  
  485.   /* size of process structure includes the vector header,
  486.      so deduct for that.  But struct Lisp_Vector includes the first
  487.      element, thus deducts too much, so add it back.  */
  488.   val = Fmake_vector (make_number ((sizeof (struct Lisp_Process)
  489.                     - sizeof (struct Lisp_Vector)
  490.                     + sizeof (Lisp_Object))
  491.                    / sizeof (Lisp_Object)),
  492.               Qnil);
  493.   XSETTYPE (val, Lisp_Process);
  494.  
  495.   p = XPROCESS (val);
  496.   XFASTINT (p->infd) = 0;
  497.   XFASTINT (p->outfd) = 0;
  498.   XFASTINT (p->pid) = 0;
  499.   XFASTINT (p->tick) = 0;
  500.   XFASTINT (p->update_tick) = 0;
  501.   p->raw_status_low = Qnil;
  502.   p->raw_status_high = Qnil;
  503.   p->status = Qrun;
  504.   p->mark = Fmake_marker ();
  505.  
  506.   /* If name is already in use, modify it until it is unused.  */
  507.  
  508.   name1 = name;
  509.   for (i = 1; ; i++)
  510.     {
  511.       tem = Fget_process (name1);
  512.       if (NULL (tem)) break;
  513.       sprintf (suffix, "<%d>", i);
  514.       name1 = concat2 (name, build_string (suffix));
  515.     }
  516.   name = name1;
  517.   p->name = name;
  518.   Vprocess_alist = Fcons (Fcons (name, val), Vprocess_alist);
  519.   return val;
  520. }
  521.  
  522. remove_process (proc)
  523.      register Lisp_Object proc;
  524. {
  525.   register Lisp_Object pair;
  526.  
  527.   pair = Frassq (proc, Vprocess_alist);
  528.   Vprocess_alist = Fdelq (pair, Vprocess_alist);
  529.   Fset_marker (XPROCESS (proc)->mark, Qnil, Qnil);
  530.  
  531.   deactivate_process (proc);
  532. }
  533.  
  534. DEFUN ("processp", Fprocessp, Sprocessp, 1, 1, 0,
  535.   "Return t if OBJECT is a process.")
  536.   (obj)
  537.      Lisp_Object obj;
  538. {
  539.   return XTYPE (obj) == Lisp_Process ? Qt : Qnil;
  540. }
  541.  
  542. DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0,
  543.   "Return the process named NAME, or nil if there is none.")
  544.   (name)
  545.      register Lisp_Object name;
  546. {
  547.   if (XTYPE (name) == Lisp_Process)
  548.     return name;
  549.   CHECK_STRING (name, 0);
  550.   return Fcdr (Fassoc (name, Vprocess_alist));
  551. }
  552.  
  553. DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
  554.   "Return the (or, a) process associated with BUFFER.\n\
  555. BUFFER may be a buffer or the name of one.")
  556.   (name)
  557.      register Lisp_Object name;
  558. {
  559.   register Lisp_Object buf, tail, proc;
  560.  
  561.   if (NULL (name)) return Qnil;
  562.   buf = Fget_buffer (name);
  563.   if (NULL (buf)) return Qnil;
  564.  
  565.   for (tail = Vprocess_alist; !NULL (tail); tail = Fcdr (tail))
  566.     {
  567.       proc = Fcdr (Fcar (tail));
  568.       if (XTYPE (proc) == Lisp_Process && EQ (XPROCESS (proc)->buffer, buf))
  569.     return proc;
  570.     }
  571.   return Qnil;
  572. }
  573.  
  574. /* This is how commands for the user decode process arguments */
  575.  
  576. Lisp_Object
  577. get_process (name)
  578.      register Lisp_Object name;
  579. {
  580.   register Lisp_Object proc;
  581.   if (NULL (name))
  582.     proc = Fget_buffer_process (Fcurrent_buffer ());
  583.   else
  584.     {
  585.       proc = Fget_process (name);
  586.       if (NULL (proc))
  587.     proc = Fget_buffer_process (Fget_buffer (name));
  588.     }
  589.  
  590.   if (!NULL (proc))
  591.     return proc;
  592.  
  593.   if (NULL (name))
  594.     error ("Current buffer has no process");
  595.   else
  596.     error ("Process %s does not exist", XSTRING (name)->data);
  597.   /* NOTREACHED */
  598. }
  599.  
  600. DEFUN ("delete-process", Fdelete_process, Sdelete_process, 1, 1, 0,
  601.   "Delete PROCESS: kill it and forget about it immediately.\n\
  602. PROCESS may be a process or the name of one, or a buffer name.")
  603.   (proc)
  604.      register Lisp_Object proc;
  605. {
  606.   proc = get_process (proc);
  607.   XPROCESS (proc)->raw_status_low = Qnil;
  608.   XPROCESS (proc)->raw_status_high = Qnil;
  609.   if (NETCONN_P (proc))
  610.     {
  611.       XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (0), Qnil));
  612.       XSETINT (XPROCESS (proc)->tick, ++process_tick);
  613.     }
  614.   else if (XFASTINT (XPROCESS (proc)->infd))
  615.     {
  616.       Fkill_process (proc, Qnil);
  617.       /* Do this now, since remove_process will make sigchld_handler do nothing.  */
  618.       XPROCESS (proc)->status
  619.     = Fcons (Qsignal, Fcons (make_number (SIGKILL), Qnil));
  620.       XSETINT (XPROCESS (proc)->tick, ++process_tick);
  621.       status_notify ();
  622.     }
  623.   remove_process (proc);
  624.   return Qnil;
  625. }
  626.  
  627. DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0,
  628.   "Return the status of PROCESS: a symbol, one of these:\n\
  629. run  -- for a process that is running.\n\
  630. stop -- for a process stopped but continuable.\n\
  631. exit -- for a process that has exited.\n\
  632. signal -- for a process that has got a fatal signal.\n\
  633. open -- for a network stream connection that is open.\n\
  634. closed -- for a network stream connection that is closed.\n\
  635. nil -- if arg is a process name and no such process exists.")
  636. /* command -- for a command channel opened to Emacs by another process.\n\
  637.    external -- for an i/o channel opened to Emacs by another process.\n\  */
  638.   (proc)
  639.      register Lisp_Object proc;
  640. {
  641.   register struct Lisp_Process *p;
  642.   proc = Fget_process (proc);
  643.   if (NULL (proc))
  644.     return proc;
  645.   p = XPROCESS (proc);
  646.   if (!NULL (p->raw_status_low))
  647.     update_status (p);
  648.   if (XTYPE (p->status) == Lisp_Cons)
  649.     return XCONS (p->status)->car;
  650.   return p->status;
  651. }
  652.  
  653. DEFUN ("process-exit-status", Fprocess_exit_status, Sprocess_exit_status,
  654.        1, 1, 0,
  655.   "Return the exit status of PROCESS or the signal number that killed it.\n\
  656. If PROCESS has not yet exited or died, return 0.")
  657.   (proc)
  658.      register Lisp_Object proc;
  659. {
  660.   CHECK_PROCESS (proc, 0);
  661.   if (!NULL (XPROCESS (proc)->raw_status_low))
  662.     update_status (XPROCESS (proc));
  663.   if (XTYPE (XPROCESS (proc)->status) == Lisp_Cons)
  664.     return XCONS (XCONS (XPROCESS (proc)->status)->cdr)->car;
  665.   return make_number (0);
  666. }
  667.  
  668. DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
  669.   "Return the process id of PROCESS.\n\
  670. This is the pid of the Unix process which PROCESS uses or talks to.\n\
  671. For a network connection, this value is nil.")
  672.   (proc)
  673.      register Lisp_Object proc;
  674. {
  675.   CHECK_PROCESS (proc, 0);
  676.   return XPROCESS (proc)->pid;
  677. }
  678.  
  679. DEFUN ("process-name", Fprocess_name, Sprocess_name, 1, 1, 0,
  680.   "Return the name of PROCESS, as a string.\n\
  681. This is the name of the program invoked in PROCESS,\n\
  682. possibly modified to make it unique among process names.")
  683.   (proc)
  684.      register Lisp_Object proc;
  685. {
  686.   CHECK_PROCESS (proc, 0);
  687.   return XPROCESS (proc)->name;
  688. }
  689.  
  690. DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
  691.   "Return the command that was executed to start PROCESS.\n\
  692. This is a list of strings, the first string being the program executed\n\
  693. and the rest of the strings being the arguments given to it.\n\
  694. For a non-child channel, this is nil.")
  695.   (proc)
  696.      register Lisp_Object proc;
  697. {
  698.   CHECK_PROCESS (proc, 0);
  699.   return XPROCESS (proc)->command;
  700. }
  701.  
  702. DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
  703.   2, 2, 0,
  704.   "Set buffer associated with PROCESS to BUFFER (a buffer, or nil).")
  705.   (proc, buffer)
  706.      register Lisp_Object proc, buffer;
  707. {
  708.   CHECK_PROCESS (proc, 0);
  709.   if (!NULL (buffer))
  710.     CHECK_BUFFER (buffer, 1);
  711.   XPROCESS (proc)->buffer = buffer;
  712.   return buffer;
  713. }
  714.  
  715. DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer,
  716.   1, 1, 0,
  717.   "Return the buffer PROCESS is associated with.\n\
  718. Output from PROCESS is inserted in this buffer\n\
  719. unless PROCESS has a filter.")
  720.   (proc)
  721.      register Lisp_Object proc;
  722. {
  723.   CHECK_PROCESS (proc, 0);
  724.   return XPROCESS (proc)->buffer;
  725. }
  726.  
  727. DEFUN ("process-mark", Fprocess_mark, Sprocess_mark,
  728.   1, 1, 0,
  729.   "Return the marker for the end of the last output from PROCESS.")
  730.   (proc)
  731.      register Lisp_Object proc;
  732. {
  733.   CHECK_PROCESS (proc, 0);
  734.   return XPROCESS (proc)->mark;
  735. }
  736.  
  737. DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter,
  738.   2, 2, 0,
  739.   "Give PROCESS the filter function FILTER; nil means no filter.\n\
  740. When a process has a filter, each time it does output\n\
  741. the entire string of output is passed to the filter.\n\
  742. The filter gets two arguments: the process and the string of output.\n\
  743. If the process has a filter, its buffer is not used for output.")
  744.   (proc, filter)
  745.      register Lisp_Object proc, filter;
  746. {
  747.   CHECK_PROCESS (proc, 0);
  748.   XPROCESS (proc)->filter = filter;
  749.   return filter;
  750. }
  751.  
  752. DEFUN ("process-filter", Fprocess_filter, Sprocess_filter,
  753.   1, 1, 0,
  754.   "Returns the filter function of PROCESS; nil if none.\n\
  755. See set-process-filter for more info on filter functions.")
  756.   (proc)
  757.      register Lisp_Object proc;
  758. {
  759.   CHECK_PROCESS (proc, 0);
  760.   return XPROCESS (proc)->filter;
  761. }
  762.  
  763. DEFUN ("set-process-sentinel", Fset_process_sentinel, Sset_process_sentinel,
  764.   2, 2, 0,
  765.   "Give PROCESS the sentinel SENTINEL; nil for none.\n\
  766. The sentinel is called as a function when the process changes state.\n\
  767. It gets two arguments: the process, and a string describing the change.")
  768.   (proc, sentinel)
  769.      register Lisp_Object proc, sentinel;
  770. {
  771.   CHECK_PROCESS (proc, 0);
  772.   XPROCESS (proc)->sentinel = sentinel;
  773.   return sentinel;
  774. }
  775.  
  776. DEFUN ("process-sentinel", Fprocess_sentinel, Sprocess_sentinel,
  777.   1, 1, 0,
  778.   "Return the sentinel of PROCESS; nil if none.\n\
  779. See set-process-sentinel for more info on sentinels.")
  780.   (proc)
  781.      register Lisp_Object proc;
  782. {
  783.   CHECK_PROCESS (proc, 0);
  784.   return XPROCESS (proc)->sentinel;
  785. }
  786.  
  787. DEFUN ("process-kill-without-query", Fprocess_kill_without_query,
  788.   Sprocess_kill_without_query, 1, 2, 0,
  789.   "Say no query needed if PROCESS is running when Emacs is exited.\n\
  790. Optional second argument if non-nil says to require a query.\n\
  791. Value is t if a query was formerly required.")
  792.   (proc, value)
  793.      register Lisp_Object proc, value;
  794. {
  795.   Lisp_Object tem;
  796.   CHECK_PROCESS (proc, 0);
  797.   tem = XPROCESS (proc)->kill_without_query;
  798.   XPROCESS (proc)->kill_without_query = Fnull (value);
  799.   return Fnull (tem);
  800. }
  801.  
  802. Lisp_Object
  803. list_processes_1 ()
  804. {
  805.   register Lisp_Object tail, tem;
  806.   Lisp_Object proc, minspace, tem1;
  807.   register struct buffer *old = current_buffer;
  808.   register struct Lisp_Process *p;
  809.   register int state;
  810.   char tembuf[80];
  811.  
  812.   XFASTINT (minspace) = 1;
  813.  
  814.   set_buffer_internal (XBUFFER (Vstandard_output));
  815.   Fbuffer_flush_undo (Vstandard_output);
  816.  
  817.   current_buffer->truncate_lines = Qt;
  818.  
  819.   write_string ("\
  820. Proc         Status   Buffer         Command\n\
  821. ----         ------   ------         -------\n", -1);
  822.  
  823.   for (tail = Vprocess_alist; !NULL (tail); tail = Fcdr (tail))
  824.     {
  825.       Lisp_Object symbol;
  826.  
  827.       proc = Fcdr (Fcar (tail));
  828.       p = XPROCESS (proc);
  829.       if (NULL (p->childp))
  830.     continue;
  831.  
  832.       Finsert (1, &p->name);
  833.       Findent_to (make_number (13), minspace);
  834.  
  835.       if (!NULL (p->raw_status_low))
  836.     update_status (p);
  837.       symbol = p->status;
  838.       if (XTYPE (p->status) == Lisp_Cons)
  839.     symbol = XCONS (p->status)->car;
  840.  
  841.       if (EQ (symbol, Qsignal))
  842.     {
  843.       Lisp_Object tem;
  844.       tem = Fcar (Fcdr (p->status));
  845.       if (XINT (tem) < NSIG)
  846.         write_string (sys_siglist [XINT (tem)], -1);
  847.       else
  848.         Fprinc (symbol, Qnil);
  849.     }
  850.       else
  851.     Fprinc (symbol, Qnil);
  852.  
  853.       if (EQ (symbol, Qexit))
  854.     {
  855.       Lisp_Object tem;
  856.       tem = Fcar (Fcdr (p->status));
  857.       if (XFASTINT (tem))
  858.         {
  859.           sprintf (tembuf, " %d", XFASTINT (tem));
  860.           write_string (tembuf, -1);
  861.         }
  862.     }
  863.  
  864.       if (EQ (symbol, Qsignal) || EQ (symbol, Qexit))
  865.     remove_process (proc);
  866.  
  867.       Findent_to (make_number (22), minspace);
  868.       if (NULL (p->buffer))
  869.     InsStr ("(none)");
  870.       else if (NULL (XBUFFER (p->buffer)->name))
  871.     InsStr ("(Killed)");
  872.       else
  873.     Finsert (1, &XBUFFER (p->buffer)->name);
  874.  
  875.       Findent_to (make_number (37), minspace);
  876.  
  877.       if (NETCONN_P (proc))
  878.         {
  879.       sprintf (tembuf, "(network stream connection to %s)\n",
  880.            XSTRING (p->childp)->data);
  881.       InsStr (tembuf);
  882.         }
  883.       else 
  884.     {
  885.       tem = p->command;
  886.       while (1)
  887.         {
  888.           tem1 = Fcar (tem);
  889.           Finsert (1, &tem1);
  890.           tem = Fcdr (tem);
  891.           if (NULL (tem))
  892.         break;
  893.           InsStr (" ");
  894.         }
  895.       InsStr ("\n");
  896.        }
  897.     }
  898.  
  899.   return Qnil;
  900. }
  901.  
  902. DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "",
  903.   "Display a list of all processes.\n\
  904. \(Any processes listed as Exited or Signaled are actually eliminated\n\
  905. after the listing is made.)")
  906.   ()
  907. {
  908.   internal_with_output_to_temp_buffer ("*Process List*",
  909.                        list_processes_1, Qnil);
  910.   return Qnil;
  911. }
  912.  
  913. DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
  914.   "Return a list of all processes.")
  915.   ()
  916. {
  917.   return Fmapcar (Qcdr, Vprocess_alist);
  918. }
  919.  
  920. DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
  921.   "Start a program in a subprocess.  Return the process object for it.\n\
  922. Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\
  923. NAME is name for process.  It is modified if necessary to make it unique.\n\
  924. BUFFER is the buffer or (buffer-name) to associate with the process.\n\
  925.  Process output goes at end of that buffer, unless you specify\n\
  926.  an output stream or filter function to handle the output.\n\
  927.  BUFFER may be also nil, meaning that this process is not associated\n\
  928.  with any buffer\n\
  929. Third arg is program file name.  It is searched for as in the shell.\n\
  930. Remaining arguments are strings to give program as arguments.")
  931.   (nargs, args)
  932.      int nargs;
  933.      register Lisp_Object *args;
  934. {
  935.   Lisp_Object buffer, name, program, proc, tem;
  936.   register unsigned char **new_argv;
  937.   register int i;
  938.  
  939.   buffer = args[1];
  940.   if (!NULL (buffer))
  941.     buffer = Fget_buffer_create (buffer);
  942.  
  943.   name = args[0];
  944.   CHECK_STRING (name, 0);
  945.  
  946.   program = args[2];
  947.  
  948.   CHECK_STRING (program, 2);
  949.  
  950.   new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
  951.  
  952.   for (i = 3; i < nargs; i++)
  953.     {
  954.       tem = args[i];
  955.       CHECK_STRING (tem, i);
  956.       new_argv[i - 2] = XSTRING (tem)->data;
  957.     }
  958.   new_argv[i - 2] = 0;
  959.   new_argv[0] = XSTRING (program)->data;
  960.  
  961.   /* If program file name is not absolute, search our path for it */
  962.   if (new_argv[0][0] != '/')
  963.     {
  964.       tem = Qnil;
  965.       openp (Vexec_path, program, "", &tem, 1);
  966.       if (NULL (tem))
  967.     report_file_error ("Searching for program", Fcons (program, Qnil));
  968.       new_argv[0] = XSTRING (tem)->data;
  969.     }
  970.  
  971.   proc = make_process (name);
  972.  
  973.   XPROCESS (proc)->childp = Qt;
  974.   XPROCESS (proc)->command_channel_p = Qnil;
  975.   XPROCESS (proc)->buffer = buffer;
  976.   XPROCESS (proc)->sentinel = Qnil;
  977.   XPROCESS (proc)->filter = Qnil;
  978.   XPROCESS (proc)->command = Flist (nargs - 2, args + 2);
  979.  
  980.   create_process (proc, new_argv);
  981.  
  982.   return proc;
  983. }
  984.  
  985. create_process_1 (signo)
  986.      int signo;
  987. {
  988. #ifdef USG
  989.   /* USG systems forget handlers when they are used;
  990.      must reestablish each time */
  991.   signal (signo, create_process_1);
  992. #endif /* USG */
  993. }
  994.  
  995. #if 0  /* This doesn't work; see the note before sigchld_handler.  */
  996. #ifdef USG
  997. #ifdef SIGCHLD
  998. /* Mimic blocking of signals on system V, which doesn't really have it.  */
  999.  
  1000. /* Nonzero means we got a SIGCHLD when it was supposed to be blocked.  */
  1001. int sigchld_deferred;
  1002.  
  1003. create_process_sigchld ()
  1004. {
  1005.   signal (SIGCHLD, create_process_sigchld);
  1006.  
  1007.   sigchld_deferred = 1;
  1008. }
  1009. #endif
  1010. #endif
  1011. #endif
  1012.  
  1013. create_process (process, new_argv)
  1014.      Lisp_Object process;
  1015.      char **new_argv;
  1016. {
  1017.   int pid, inchannel, outchannel, forkin, forkout;
  1018.   int sv[2];
  1019. #ifdef SIGCHLD
  1020.   int (*sigchld)();
  1021. #endif
  1022.   char **env;
  1023.   int pty_flag = 0;
  1024.   extern char **environ;
  1025.  
  1026. #ifdef MAINTAIN_ENVIRONMENT
  1027.   env = (char **) alloca (size_of_current_environ ());
  1028.   get_current_environ (env);
  1029. #else
  1030.   env = environ;
  1031. #endif /* MAINTAIN_ENVIRONMENT */
  1032.  
  1033.   inchannel = outchannel = -1;
  1034.  
  1035. #ifdef HAVE_PTYS
  1036.   if (EQ (Vprocess_connection_type, Qt))
  1037.     outchannel = inchannel = allocate_pty ();
  1038.  
  1039.   if (inchannel >= 0)
  1040.     {
  1041. #ifndef USG
  1042.       /* On USG systems it does not work to open
  1043.      the pty's tty here and then close and reopen it in the child.  */
  1044.       forkout = forkin = open (pty_name, O_RDWR, 0);
  1045.       if (forkin < 0)
  1046.     report_file_error ("Opening pty", Qnil);
  1047. #else
  1048.       forkin = forkout = -1;
  1049. #endif
  1050.       pty_flag = 1;
  1051.     }
  1052.   else
  1053. #endif /* HAVE_PTYS */
  1054. #ifdef SKTPAIR
  1055.     {
  1056.       if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv) < 0)
  1057.     report_file_error ("Opening socketpair", Qnil);
  1058.       outchannel = inchannel = sv[0];
  1059.       forkout = forkin = sv[1];
  1060.     }
  1061. #else /* not SKTPAIR */
  1062.     {
  1063.       pipe (sv);
  1064.       inchannel = sv[0];
  1065.       forkout = sv[1];
  1066.       pipe (sv);
  1067.       outchannel = sv[1];
  1068.       forkin = sv[0];
  1069.     }
  1070. #endif /* not SKTPAIR */
  1071.  
  1072. #if 0
  1073.   /* Replaced by close_process_descs */
  1074.   set_exclusive_use (inchannel);
  1075.   set_exclusive_use (outchannel);
  1076. #endif
  1077.  
  1078. /* Stride people say it's a mystery why this is needed
  1079.    as well as the O_NDELAY, but that it fails without this.  */
  1080. #ifdef STRIDE
  1081.   {
  1082.     int one = 1;
  1083.     ioctl (inchannel, FIONBIO, &one);
  1084.   }
  1085. #endif
  1086.  
  1087. #ifdef O_NONBLOCK
  1088.   fcntl (inchannel, F_SETFL, O_NONBLOCK);
  1089. #else
  1090. #ifdef O_NDELAY
  1091.   fcntl (inchannel, F_SETFL, O_NDELAY);
  1092. #endif
  1093. #endif
  1094.  
  1095.   /* Record this as an active process, with its channels.
  1096.      As a result, child_setup will close Emacs's side of the pipes.  */
  1097.   chan_process[inchannel] = process;
  1098.   XFASTINT (XPROCESS (process)->infd) = inchannel;
  1099.   XFASTINT (XPROCESS (process)->outfd) = outchannel;
  1100.   XPROCESS (process)->pty_flag = (pty_flag ? Qt : Qnil);
  1101.   XPROCESS (process)->status = Qrun;
  1102.  
  1103.   /* Delay interrupts until we have a chance to store
  1104.      the new fork's pid in its process structure */
  1105. #ifdef SIGCHLD
  1106. #ifdef BSD4_1
  1107.   sighold (SIGCHLD);
  1108. #else /* not BSD4_1 */
  1109. #ifdef HPUX
  1110.   sigsetmask (1 << (SIGCHLD - 1));
  1111. #else /* not HPUX */
  1112. #if defined (BSD) || defined (UNIPLUS)
  1113.   sigsetmask (1 << (SIGCHLD - 1));
  1114. #else /* ordinary USG */
  1115. #if 0
  1116.   sigchld_deferred = 0;
  1117.   sigchld = (int (*)()) signal (SIGCHLD, create_process_sigchld);
  1118. #endif
  1119. #endif /* ordinary USG */
  1120. #endif /* not HPUX */
  1121. #endif /* not BSD4_1 */
  1122. #endif /* SIGCHLD */
  1123.  
  1124.   /* Until we store the proper pid, enable sigchld_handler
  1125.      to recognize an unknown pid as standing for this process.  */
  1126.   XSETINT (XPROCESS (process)->pid, -1);
  1127.  
  1128.   {
  1129.     /* child_setup must clobber environ on systems with true vfork.
  1130.        Protect it from permanent change.  */
  1131.     char **save_environ = environ;
  1132.  
  1133.     pid = vfork ();
  1134.     if (pid == 0)
  1135.       {
  1136.     int xforkin = forkin;
  1137.     int xforkout = forkout;
  1138.  
  1139. #if 0 /* This was probably a mistake--it duplicates code later on,
  1140.      but fails to handle all the cases.  */
  1141.     /* Make SIGCHLD work again in the child.  */
  1142.     sigsetmask (0);
  1143. #endif
  1144.  
  1145.     /* Make the pty be the controlling terminal of the process.  */
  1146. #ifdef HAVE_PTYS
  1147.     /* First, disconnect its current controlling terminal.  */
  1148. #ifdef HAVE_SETSID
  1149.     setsid ();
  1150. #else /* not HAVE_SETSID */
  1151. #ifdef USG
  1152.     /* It's very important to call setpgrp() here and no time
  1153.        afterwards.  Otherwise, we lose our controlling tty which
  1154.        is set when we open the pty. */
  1155.     setpgrp ();
  1156. #endif /* USG */
  1157. #endif /* not HAVE_SETSID */
  1158. #ifdef TIOCNOTTY
  1159.     /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
  1160.        can do TIOCSPGRP only to the process's controlling tty.  */
  1161.     if (pty_flag)
  1162.       {
  1163.         /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here? 
  1164.            I can't test it since I don't have 4.3.  */
  1165.         int j = open ("/dev/tty", O_RDWR, 0);
  1166.         ioctl (j, TIOCNOTTY, 0);
  1167.         close (j);
  1168. #ifndef USG
  1169.         /* In order to get a controlling terminal on some versions
  1170.            of BSD, it is necessary to put the process in pgrp 0
  1171.            before it opens the terminal.  */
  1172.         setpgrp (0, 0);
  1173. #endif
  1174.       }
  1175. #endif /* TIOCNOTTY */
  1176.  
  1177. #if !defined (RTU) && !defined (UNIPLUS)
  1178. /*** There is a suggestion that this ought to be a
  1179.      conditional on TIOCSPGRP.  */
  1180.     /* Now close the pty (if we had it open) and reopen it.
  1181.        This makes the pty the controlling terminal of the subprocess.  */
  1182.     if (pty_flag)
  1183.       {
  1184.         /* I wonder if close (open (pty_name, ...)) would work?  */
  1185.         if (xforkin >= 0)
  1186.           close (xforkin);
  1187.         xforkout = xforkin = open (pty_name, O_RDWR, 0);
  1188.  
  1189.         if (xforkin < 0)
  1190.           abort ();
  1191.       }
  1192. #endif /* not UNIPLUS and not RTU */
  1193. #ifdef SETUP_SLAVE_PTY
  1194.     SETUP_SLAVE_PTY;
  1195. #endif /* SETUP_SLAVE_PTY */
  1196. #ifdef AIX
  1197.     /* On AIX, we've disabled SIGHUP above once we start a child on a pty.
  1198.        Now reenable it in the child, so it will die when we want it to.  */
  1199.     if (pty_flag)
  1200.       signal (SIGHUP, SIG_DFL);
  1201. #endif
  1202. #endif /* HAVE_PTYS */
  1203. #ifdef SIGCHLD
  1204. #ifdef BSD4_1
  1205.     sigrelse (SIGCHLD);
  1206. #else /* not BSD4_1 */
  1207. #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
  1208.     sigsetmask (0);
  1209. #else /* ordinary USG */
  1210.     signal (SIGCHLD, sigchld);
  1211. #endif /* ordinary USG */
  1212. #endif /* not BSD4_1 */
  1213. #endif /* SIGCHLD */
  1214.     child_setup_tty (xforkout);
  1215.     child_setup (xforkin, xforkout, xforkout, new_argv, env);
  1216.       }
  1217.     environ = save_environ;
  1218.   }
  1219.  
  1220.   if (pid < 0)
  1221.     {
  1222.       remove_process (process);
  1223.       report_file_error ("Doing vfork", Qnil);
  1224.     }
  1225.  
  1226.   XFASTINT (XPROCESS (process)->pid) = pid;
  1227.  
  1228.   FD_SET (inchannel, &input_wait_mask);
  1229.  
  1230.   /* If the subfork execv fails, and it exits,
  1231.      this close hangs.  I don't know why.
  1232.      So have an interrupt jar it loose.  */
  1233.   stop_polling ();
  1234.   signal (SIGALRM, create_process_1);
  1235.   alarm (1);
  1236.   if (forkin >= 0)
  1237.     close (forkin);
  1238.   alarm (0);
  1239.   start_polling ();
  1240.   if (forkin != forkout && forkout >= 0)
  1241.     close (forkout);
  1242.  
  1243. #ifdef SIGCHLD
  1244. #ifdef BSD4_1
  1245.   sigrelse (SIGCHLD);
  1246. #else /* not BSD4_1 */
  1247. #if defined (BSD) || defined (UNIPLUS) || defined (HPUX)
  1248.   sigsetmask (0);
  1249. #else /* ordinary USG */
  1250. #if 0
  1251.   signal (SIGCHLD, sigchld);
  1252.   /* Now really handle any of these signals
  1253.      that came in during this function.  */
  1254.   if (sigchld_deferred)
  1255.     kill (getpid (), SIGCHLD);
  1256. #endif
  1257. #endif /* ordinary USG */
  1258. #endif /* not BSD4_1 */
  1259. #endif /* SIGCHLD */
  1260. }
  1261.  
  1262. #ifdef HAVE_SOCKETS
  1263.  
  1264. /* open a TCP network connection to a given HOST/SERVICE.  Treated
  1265.    exactly like a normal process when reading and writing.  Only
  1266.    differences are in status display and process deletion.  A network
  1267.    connection has no PID; you cannot signal it.  All you can do is
  1268.    deactivate and close it via delete-process */
  1269.  
  1270. DEFUN ("open-network-stream", Fopen_network_stream, Sopen_network_stream, 
  1271.        4, 4, 0, 
  1272.   "Open a TCP connection for a service to a host.\n\
  1273. Returns a subprocess-object to represent the connection.\n\
  1274. Input and output work as for subprocesses; `delete-process' closes it.\n\
  1275. Args are NAME BUFFER HOST SERVICE.\n\
  1276. NAME is name for process.  It is modified if necessary to make it unique.\n\
  1277. BUFFER is the buffer (or buffer-name) to associate with the process.\n\
  1278.  Process output goes at end of that buffer, unless you specify\n\
  1279.  an output stream or filter function to handle the output.\n\
  1280.  BUFFER may be also nil, meaning that this process is not associated\n\
  1281.  with any buffer\n\
  1282. Third arg is name of the host to connect to.\n\
  1283. Fourth arg SERVICE is name of the service desired, or an integer\n\
  1284.  specifying a port number to connect to.")
  1285.    (name, buffer, host, service)
  1286.       Lisp_Object name, buffer, host, service;
  1287. {
  1288.   Lisp_Object proc;
  1289.   register int i;
  1290.   struct sockaddr_in address;
  1291.   struct servent *svc_info;
  1292.   struct hostent *host_info;
  1293.   int s, outch, inch;
  1294.   char errstring[80];
  1295.   int port;
  1296.   struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
  1297.  
  1298.   GCPRO4 (name, buffer, host, service);
  1299.   CHECK_STRING (name, 0);
  1300.   CHECK_STRING (host, 0);
  1301.   if (XTYPE(service) == Lisp_Int)
  1302.     port = htons ((unsigned short) XINT (service));
  1303.   else
  1304.     {
  1305.       CHECK_STRING (service, 0);
  1306.       svc_info = getservbyname (XSTRING (service)->data, "tcp");
  1307.       if (svc_info == 0)
  1308.     error ("Unknown service \"%s\"", XSTRING (service)->data);
  1309.       port = svc_info->s_port;
  1310.     }
  1311.  
  1312.   /* First try numeric IP address */
  1313.   address.sin_addr.s_addr = inet_addr (XSTRING (host)->data);
  1314.   if (address.sin_addr.s_addr != (unsigned long)-1)
  1315.     {
  1316.       address.sin_family = AF_INET;
  1317.       host_info = 0;
  1318.     }
  1319.   else
  1320.     /* ...and if that doesn't work, try finding the host by name */
  1321.     {
  1322.       host_info = gethostbyname (XSTRING (host)->data);
  1323.       if (host_info == 0)
  1324.     error ("Unknown host \"%s\"", XSTRING(host)->data);
  1325.       bzero (&address, sizeof address);
  1326.       bcopy (host_info->h_addr, (char *) &address.sin_addr,
  1327.          host_info->h_length);
  1328.       address.sin_family = host_info->h_addrtype;
  1329.     }
  1330.   address.sin_port = port;
  1331.  
  1332.   s = socket (host_info != 0 ? host_info->h_addrtype : AF_INET,
  1333.           SOCK_STREAM, 0);
  1334.   if (s < 0) 
  1335.     report_file_error ("error creating socket", Fcons (name, Qnil));
  1336.  
  1337.   if (connect (s, &address, sizeof address) == -1)
  1338.     {
  1339.       close (s);
  1340.       error ("Host \"%s\" not responding", XSTRING (host)->data);
  1341.     }
  1342.  
  1343.   inch = s;
  1344.   outch = dup (s);
  1345.   if (outch < 0) 
  1346.     report_file_error ("error duplicating socket", Fcons (name, Qnil));
  1347.  
  1348.   if (!NULL (buffer))
  1349.     buffer = Fget_buffer_create (buffer);
  1350.   proc = make_process (name);
  1351.  
  1352.   chan_process[inch] = proc;
  1353.  
  1354. #ifdef O_NONBLOCK
  1355.   fcntl (inch, F_SETFL, O_NONBLOCK);
  1356. #else
  1357. #ifdef O_NDELAY
  1358.   fcntl (inch, F_SETFL, O_NDELAY);
  1359. #endif
  1360. #endif
  1361.  
  1362.   XPROCESS (proc)->childp = host;
  1363.   XPROCESS (proc)->command_channel_p = Qnil;
  1364.   XPROCESS (proc)->buffer = buffer;
  1365.   XPROCESS (proc)->sentinel = Qnil;
  1366.   XPROCESS (proc)->filter = Qnil;
  1367.   XPROCESS (proc)->command = Qnil;
  1368.   XPROCESS (proc)->pid = Qnil;
  1369.   XPROCESS (proc)->kill_without_query = Qt;
  1370.   XFASTINT (XPROCESS (proc)->infd) = s;
  1371.   XFASTINT (XPROCESS (proc)->outfd) = outch;
  1372.   XPROCESS (proc)->status = Qrun;
  1373.   FD_SET (inch, &input_wait_mask);
  1374.  
  1375.   UNGCPRO;
  1376.   return proc;
  1377. }
  1378. #endif    /* HAVE_SOCKETS */
  1379.  
  1380. deactivate_process (proc)
  1381.      Lisp_Object proc;
  1382. {
  1383.   register int inchannel, outchannel;
  1384.   register struct Lisp_Process *p = XPROCESS (proc);
  1385.  
  1386.   inchannel = XFASTINT (p->infd);
  1387.   outchannel = XFASTINT (p->outfd);
  1388.  
  1389.   if (inchannel)
  1390.     {
  1391.       /* Beware SIGCHLD hereabouts. */
  1392.       flush_pending_output (inchannel);
  1393.       close (inchannel);
  1394.       if (outchannel  &&  outchannel != inchannel)
  1395.      close (outchannel);
  1396.  
  1397.       XFASTINT (p->infd) = 0;
  1398.       XFASTINT (p->outfd) = 0;
  1399.       chan_process[inchannel] = Qnil;
  1400.       FD_CLR (inchannel, &input_wait_mask);
  1401.     }
  1402. }
  1403.  
  1404. /* Close all descriptors currently in use for communication
  1405.    with subprocess.  This is used in a newly-forked subprocess
  1406.    to get rid of irrelevant descriptors.  */
  1407.  
  1408. close_process_descs ()
  1409. {
  1410.   int i;
  1411.   for (i = 0; i < MAXDESC; i++)
  1412.     {
  1413.       Lisp_Object process;
  1414.       process = chan_process[i];
  1415.       if (!NULL (process))
  1416.     {
  1417.       int in = XFASTINT (XPROCESS (process)->infd);
  1418.       int out = XFASTINT (XPROCESS (process)->outfd);
  1419.       close (in);
  1420.       if (in != out)
  1421.         close (out);
  1422.     }
  1423.     }
  1424. }
  1425.  
  1426. DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output,
  1427.   0, 1, 0,
  1428.   "Allow any pending output from subprocesses to be read by Emacs.\n\
  1429. It is read into the process' buffers or given to their filter functions.\n\
  1430. Non-nil arg PROCESS means do not return until some output has been received\n\
  1431. from PROCESS.")
  1432.   (proc)
  1433.      register Lisp_Object proc;
  1434. {
  1435.   if (NULL (proc))
  1436.     wait_reading_process_input (-1, 0, 0);
  1437.   else
  1438.     {
  1439.       proc = get_process (proc);
  1440.       wait_reading_process_input (0, XPROCESS (proc), 0);
  1441.     }
  1442.   return Qnil;
  1443. }
  1444.  
  1445. /* This variable is different from waiting_for_input in keyboard.c.
  1446.    It is used to communicate to a lisp process-filter/sentinel (via the
  1447.    function Fwaiting_for_user_input_p below) whether emacs was waiting
  1448.    for user-input when that process-filter was called.
  1449.    waiting_for_input cannot be used as that is by definition 0 when
  1450.    lisp code is being evalled */
  1451. static int waiting_for_user_input_p;
  1452.  
  1453. /* Read and dispose of subprocess output
  1454.  while waiting for timeout to elapse and/or keyboard input to be available.
  1455.  
  1456.  time_limit is the timeout in seconds, or zero for no limit.
  1457.  -1 means gobble data available immediately but don't wait for any.
  1458.  
  1459.  read_kbd is 1 to return when input is available.
  1460.  -1 means caller will actually read the input.
  1461.  A pointer to a struct Lisp_Process means wait until
  1462.  something arrives from that process.
  1463.  
  1464.  do_display means redisplay should be done to show
  1465.  subprocess output that arrives.  */
  1466.  
  1467. wait_reading_process_input (time_limit, read_kbd, do_display)
  1468.      int time_limit, read_kbd, do_display;
  1469. {
  1470.   register int channel, nfds, m;
  1471.   SELECT_TYPE Available;
  1472.   SELECT_TYPE Exception;
  1473.   int xerrno;
  1474.   Lisp_Object proc;
  1475. #ifdef HAVE_TIMEVAL
  1476.   struct timeval timeout, end_time, garbage;
  1477. #else
  1478.   long timeout, end_time, temp;
  1479. #endif /* not HAVE_TIMEVAL */
  1480.   SELECT_TYPE Atemp;
  1481.   int wait_channel = 0;
  1482.   struct Lisp_Process *wait_proc = 0;
  1483.   extern kbd_count;
  1484.  
  1485.   /* Detect when read_kbd is really the address of a Lisp_Process.  */
  1486.   if (read_kbd > 10 || read_kbd < -1)
  1487.     {
  1488.       wait_proc = (struct Lisp_Process *) read_kbd;
  1489.       wait_channel = XFASTINT (wait_proc->infd);
  1490.       read_kbd = 0;
  1491.     }
  1492.   waiting_for_user_input_p = read_kbd;
  1493.  
  1494.   /* Since we may need to wait several times,
  1495.      compute the absolute time to return at.  */
  1496.   if (time_limit)
  1497.     {
  1498. #ifdef HAVE_TIMEVAL
  1499.       gettimeofday (&end_time, &garbage);
  1500.       end_time.tv_sec += time_limit;
  1501. #else /* not HAVE_TIMEVAL */
  1502.       time (&end_time);
  1503.       end_time += time_limit;
  1504. #endif /* not HAVE_TIMEVAL */
  1505.     }
  1506.  
  1507. #if 0  /* Select emulator claims to preserve alarms.
  1508.       And there are many ways to get out of this function by longjmp.  */
  1509.   /* Turn off periodic alarms (in case they are in use)
  1510.      because the select emulator uses alarms.  */
  1511.   stop_polling ();
  1512. #endif
  1513.  
  1514.   while (1)
  1515.     {
  1516.       /* If calling from keyboard input, do not quit
  1517.      since we want to return C-g as an input character.
  1518.      Otherwise, do pending quit if requested.  */
  1519.       if (read_kbd >= 0)
  1520.     {
  1521. #if 0
  1522.       /* This is the same condition tested by QUIT.
  1523.          We need to resume polling if we are going to quit.  */
  1524.       if (!NULL (Vquit_flag) && NULL (Vinhibit_quit))
  1525.         {
  1526.           start_polling ();
  1527.           QUIT;
  1528.         }
  1529. #endif
  1530.       QUIT;
  1531.     }
  1532.  
  1533.       /* If status of something has changed, and no input is available,
  1534.      notify the user of the change right away */
  1535.       if (update_tick != process_tick && do_display)
  1536.     {
  1537.       Atemp = input_wait_mask;
  1538. #ifdef HAVE_TIMEVAL
  1539.       timeout.tv_sec=0; timeout.tv_usec=0;
  1540. #else /* not HAVE_TIMEVAL */
  1541.       timeout = 0;
  1542. #endif /* not HAVE_TIMEVAL */
  1543.       if (select (MAXDESC, &Atemp, 0, 0, &timeout) <= 0)
  1544.         status_notify ();
  1545.     }
  1546.  
  1547.       /* Don't wait for output from a non-running process.  */
  1548.       if (wait_proc != 0 && !NULL (wait_proc->raw_status_low))
  1549.     update_status (wait_proc);
  1550.       if (wait_proc != 0
  1551.       && ! EQ (wait_proc->status, Qrun))
  1552.     break;
  1553.  
  1554.       if (fix_screen_hook)
  1555.     (*fix_screen_hook) ();
  1556.  
  1557.       /* Compute time from now till when time limit is up */
  1558.       /* Exit if already run out */
  1559.       if (time_limit == -1)
  1560.     {
  1561.       /* -1 specified for timeout means
  1562.          gobble output available now
  1563.          but don't wait at all. */
  1564. #ifdef HAVE_TIMEVAL
  1565.       timeout.tv_sec = 0;
  1566.       timeout.tv_usec = 0;
  1567. #else
  1568.       timeout = 0;
  1569. #endif /* not HAVE_TIMEVAL */
  1570.     }
  1571.       else if (time_limit)
  1572.     {
  1573. #ifdef HAVE_TIMEVAL
  1574.       gettimeofday (&timeout, &garbage);
  1575.       timeout.tv_sec = end_time.tv_sec - timeout.tv_sec;
  1576.       timeout.tv_usec = end_time.tv_usec - timeout.tv_usec;
  1577.       if (timeout.tv_usec < 0)
  1578.         timeout.tv_usec += 1000000,
  1579.         timeout.tv_sec--;
  1580.       if (timeout.tv_sec < 0)
  1581.         break;
  1582. #else /* not HAVE_TIMEVAL */
  1583.           time (&temp);
  1584.       timeout = end_time - temp;
  1585.       if (timeout < 0)
  1586.         break;
  1587. #endif /* not HAVE_TIMEVAL */
  1588.     }
  1589.       else
  1590.     {
  1591. #ifdef HAVE_TIMEVAL
  1592.       /* If no real timeout, loop sleeping with a big timeout
  1593.          so that input interrupt can wake us up by zeroing it  */
  1594.       timeout.tv_sec = 100;
  1595.       timeout.tv_usec = 0;
  1596. #else /* not HAVE_TIMEVAL */
  1597.           timeout = 100000;    /* 100000 recognized by the select emulator */
  1598. #endif /* not HAVE_TIMEVAL */
  1599.     }
  1600.  
  1601.       /* Cause quitting and alarm signals to take immediate action,
  1602.      and cause input available signals to zero out timeout */
  1603.       if (read_kbd < 0)
  1604.     set_waiting_for_input (&timeout);
  1605.  
  1606.       /* Wait till there is something to do */
  1607.  
  1608.       Available = Exception = input_wait_mask;
  1609.       if (!read_kbd)
  1610.     FD_CLR (0, &Available);
  1611.  
  1612.       if (read_kbd && kbd_count)
  1613.     nfds = 0;
  1614.       else
  1615. #ifdef IBMRTAIX
  1616.     nfds = select (MAXDESC, &Available, 0, 0, &timeout);
  1617. #else
  1618. #ifdef HPUX
  1619.     nfds = select (MAXDESC, &Available, 0, 0, &timeout);
  1620. #else
  1621.     nfds = select (MAXDESC, &Available, 0, &Exception, &timeout);
  1622. #endif
  1623. #endif
  1624.       xerrno = errno;
  1625.  
  1626.       if (fix_screen_hook)
  1627.     (*fix_screen_hook) ();
  1628.  
  1629.       /* Make C-g and alarm signals set flags again */
  1630.       clear_waiting_for_input ();
  1631.  
  1632.       /* If we woke up due to SIGWINCH, actually change size now.  */
  1633.       do_pending_window_change ();
  1634.  
  1635.       if (time_limit && nfds == 0)    /* timeout elapsed */
  1636.     break;
  1637.       if (nfds < 0)
  1638.     {
  1639.       if (xerrno == EINTR)
  1640.         FD_ZERO (&Available);
  1641. #ifdef ALLIANT
  1642.       /* This happens for no known reason on ALLIANT.
  1643.          I am guessing that this is the right response. -- RMS.  */
  1644.       else if (xerrno == EFAULT)
  1645.         FD_ZERO (&Available);
  1646. #endif
  1647.       else if (xerrno == EBADF)
  1648. #ifdef AIX
  1649.       /* AIX will return EBADF on a call to select involving a ptc if the
  1650.          associated pts isn't open.  Since this will only happen just as
  1651.          a child is dying, just ignore the situation -- SIGCHLD will come
  1652.          along quite quickly, and after cleanup the ptc will no longer be
  1653.          checked, so this error will stop recurring.  */
  1654.         FD_ZERO (&Available);     /* Cannot depend on values returned.  */
  1655. #else /* not AIX */
  1656.         abort ();
  1657. #endif /* not AIX */
  1658.       else
  1659.         error("select error: %s", sys_errlist[xerrno]);
  1660.     }
  1661. #ifdef sun
  1662.       else if (nfds > 0 && FD_ISSET (0, &Available) && interrupt_input)
  1663.     /* System sometimes fails to deliver SIGIO.  */
  1664.     kill (getpid (), SIGIO);
  1665. #endif
  1666.  
  1667.       /* Check for keyboard input */
  1668.       /* If there is any, return immediately
  1669.      to give it higher priority than subprocesses */
  1670.  
  1671.       if (read_kbd && detect_input_pending ())
  1672.     break;
  1673.  
  1674. #ifdef vipc
  1675.       /* Check for connection from other process */
  1676.  
  1677.       if (FD_ISSET (comm_server, &Available))
  1678.     {
  1679.       FD_CLR (comm_server, &Available);
  1680.       create_commchan ();
  1681.     }
  1682. #endif vipc
  1683.  
  1684.       /* Check for data from a process or a command channel */
  1685.  
  1686.       for (channel = 3; channel < MAXDESC; channel++)
  1687.     {
  1688.       if (FD_ISSET (channel, &Available))
  1689.         {
  1690.           int nread;
  1691.  
  1692.           FD_CLR (channel, &Available);
  1693.           /* If waiting for this channel,
  1694.          arrange to return as soon as no more input
  1695.          to be processed.  No more waiting.  */
  1696.           if (wait_channel == channel)
  1697.         {
  1698.           wait_channel = 0;
  1699.           time_limit = -1;
  1700.         }
  1701.           proc = chan_process[channel];
  1702.           if (NULL (proc))
  1703.         continue;
  1704.  
  1705. #ifdef vipc
  1706.           /* It's a command channel */
  1707.           if (!NULL (XPROCESS (proc)->command_channel_p))
  1708.         {
  1709.           ProcessCommChan (channel, proc);
  1710.           if (NULL (XPROCESS (proc)->command_channel_p))
  1711.             {
  1712.               /* It has ceased to be a command channel! */
  1713.               int bytes_available;
  1714.               if (ioctl (channel, FIONREAD, &bytes_available) < 0)
  1715.             bytes_available = 0;
  1716.               if (bytes_available)
  1717.             FD_SET (channel, &Available);
  1718.             }
  1719.           continue;
  1720.         }
  1721. #endif vipc
  1722.  
  1723.           /* Read data from the process, starting with our
  1724.          buffered-ahead character if we have one.  */
  1725.  
  1726.           nread = read_process_output (proc, channel);
  1727.           if (nread > 0)
  1728.         {
  1729.           /* Since read_process_output can run a filter,
  1730.              which can call accept-process-output,
  1731.              don't try to read from any other processes
  1732.              before doing the select again.  */
  1733.           FD_ZERO (&Available);
  1734.  
  1735.           if (do_display)
  1736.             redisplay_preserve_echo_area ();
  1737.         }
  1738. #ifdef EWOULDBLOCK
  1739.           else if (nread == -1 && errno == EWOULDBLOCK)
  1740.         ;
  1741. #else
  1742. #ifdef O_NONBLOCK
  1743.           else if (nread == -1 && errno == EAGAIN)
  1744.         ;
  1745. #else
  1746. #ifdef O_NDELAY
  1747.           else if (nread == -1 && errno == EAGAIN)
  1748.         ;
  1749.           /* Note that we cannot distinguish between no input
  1750.          available now and a closed pipe.
  1751.          With luck, a closed pipe will be accompanied by
  1752.          subprocess termination and SIGCHLD.  */
  1753.           else if (nread == 0)
  1754.         ;
  1755. #endif /* O_NDELAY */
  1756. #endif /* O_NONBLOCK */
  1757. #endif /* EWOULDBLOCK */
  1758. #ifdef HAVE_PTYS
  1759.           /* On some OSs with ptys, when the process on one end of
  1760.          a pty exits, the other end gets an error reading with
  1761.          errno = EIO instead of getting an EOF (0 bytes read).
  1762.          Therefore, if we get an error reading and errno =
  1763.          EIO, just continue, because the child process has
  1764.          exited and should clean itself up soon (e.g. when we
  1765.          get a SIGCHLD). */
  1766.           else if (nread == -1 && errno == EIO)
  1767.         ;
  1768. #endif /* HAVE_PTYS */
  1769. /* If we can detect process termination, don't consider the process
  1770.    gone just because its pipe is closed.  */
  1771. #ifdef SIGCHLD
  1772.           else if (nread == 0)
  1773.         ;
  1774. #endif
  1775.           else
  1776.         {
  1777.           /* Preserve status of processes already terminated.  */
  1778.           XSETINT (XPROCESS (proc)->tick, ++process_tick);
  1779.           deactivate_process (proc);
  1780.           if (!NULL (XPROCESS (proc)->raw_status_low))
  1781.             update_status (XPROCESS (proc));
  1782.           if (EQ (XPROCESS (proc)->status, Qrun))
  1783.             XPROCESS (proc)->status
  1784.               = Fcons (Qexit, Fcons (make_number (256), Qnil));
  1785.         }
  1786.         }
  1787.     } /* end for */
  1788.     } /* end while */
  1789.  
  1790. #if 0
  1791.   /* Resume periodic signals to poll for input, if necessary.  */
  1792.   start_polling ();
  1793. #endif
  1794. }
  1795.  
  1796. /* Actually call the filter.  This gets the information via variables
  1797.    because internal_condition_case won't pass arguments.  */
  1798.  
  1799. Lisp_Object
  1800. run_filter ()
  1801. {
  1802.   return call2 (this_filter, filter_process, filter_string);
  1803. }
  1804.  
  1805. /* Read pending output from the process channel,
  1806.    starting with our buffered-ahead character if we have one.
  1807.    Yield number of characters read.
  1808.  
  1809.    This function reads at most 1024 characters.
  1810.    If you want to read all available subprocess output,
  1811.    you must call it repeatedly until it returns zero.  */
  1812.  
  1813. read_process_output (proc, channel)
  1814.      Lisp_Object proc;
  1815.      register int channel;
  1816. {
  1817.   register int nchars;
  1818.   char chars[1024];
  1819.   register Lisp_Object outstream;
  1820.   register struct buffer *old = current_buffer;
  1821.   register struct Lisp_Process *p = XPROCESS (proc);
  1822.   register int opoint;
  1823.  
  1824.   if (proc_buffered_char[channel] < 0)
  1825.     nchars = read (channel, chars, sizeof chars);
  1826.   else
  1827.     {
  1828.       chars[0] = proc_buffered_char[channel];
  1829.       proc_buffered_char[channel] = -1;
  1830.       nchars = read (channel, chars + 1, sizeof chars - 1);
  1831.       if (nchars < 0)
  1832.     nchars = 1;
  1833.       else
  1834.     nchars = nchars + 1;
  1835.     }
  1836.  
  1837.   if (nchars <= 0) return nchars;
  1838.  
  1839.   outstream = p->filter;
  1840.   if (!NULL (outstream))
  1841.     {
  1842.       int count = specpdl_ptr - specpdl;
  1843.       specbind (Qinhibit_quit, Qt);
  1844.       this_filter = outstream;
  1845.       filter_process = proc;
  1846.       filter_string = make_string (chars, nchars);
  1847.       call2 (this_filter, filter_process, filter_string);
  1848.       /*   internal_condition_case (run_filter, Qerror, Fidentity);  */
  1849.       unbind_to (count);
  1850.       return nchars;
  1851.     }
  1852.  
  1853.   /* If no filter, write into buffer if it isn't dead.  */
  1854.   if (!NULL (p->buffer) && !NULL (XBUFFER (p->buffer)->name))
  1855.     {
  1856.       Lisp_Object tem;
  1857.  
  1858.       Fset_buffer (p->buffer);
  1859.       opoint = point;
  1860.  
  1861.       /* Insert new output into buffer
  1862.      at the current end-of-output marker,
  1863.      thus preserving logical ordering of input and output.  */
  1864.       if (XMARKER (p->mark)->buffer)
  1865.     SET_PT (marker_position (p->mark));
  1866.       else
  1867.     SET_PT (ZV);
  1868.       if (point <= opoint)
  1869.     opoint += nchars;
  1870.  
  1871.       tem = current_buffer->read_only;
  1872.       current_buffer->read_only = Qnil;
  1873.       insert (chars, nchars);
  1874.       current_buffer->read_only = tem;
  1875.       Fset_marker (p->mark, make_number (point), p->buffer);
  1876.       update_mode_lines++;
  1877.  
  1878.       SET_PT (opoint);
  1879.       set_buffer_internal (old);
  1880.     }
  1881.   return nchars;
  1882. }
  1883.  
  1884. DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p,
  1885.        0, 0, 0,
  1886.   "Returns non-NIL if emacs is waiting for input from the user.\n\
  1887. This is intended for use by asynchronous process output filters and sentinels.")
  1888.        ()
  1889. {
  1890.   return ((waiting_for_user_input_p) ? Qt : Qnil);
  1891. }
  1892.  
  1893. /* Sending data to subprocess */
  1894.  
  1895. jmp_buf send_process_frame;
  1896.  
  1897. send_process_trap ()
  1898. {
  1899. #ifdef BSD4_1
  1900.   sigrelse (SIGPIPE);
  1901.   sigrelse (SIGALRM);
  1902. #endif /* BSD4_1 */
  1903.   longjmp (send_process_frame, 1);
  1904. }
  1905.  
  1906. send_process (proc, buf, len)
  1907.      Lisp_Object proc;
  1908.      char *buf;
  1909.      int len;
  1910. {
  1911.   /* Don't use register vars; longjmp can lose them.  */
  1912.   int rv;
  1913.   unsigned char *procname = XSTRING (XPROCESS (proc)->name)->data;
  1914.  
  1915.   if (!NULL (XPROCESS (proc)->raw_status_low))
  1916.     update_status (XPROCESS (proc));
  1917.   if (! EQ (XPROCESS (proc)->status, Qrun))
  1918.     error ("Process %s not running", procname);
  1919.  
  1920.   if (!setjmp (send_process_frame))
  1921.     while (len > 0)
  1922.       {
  1923.     signal (SIGPIPE, send_process_trap);
  1924.     rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, len);
  1925.     signal (SIGPIPE, SIG_DFL);
  1926.     if (rv < 0)
  1927.       {
  1928. #ifdef EWOULDBLOCK
  1929.         if (errno == EWOULDBLOCK)
  1930.           {
  1931.         /* It would be nice to accept process output here,
  1932.            but that is difficult.  For example, it could
  1933.            garbage what we are sending if that is from a buffer.  */
  1934.         immediate_quit = 1;
  1935.         QUIT;
  1936.         sleep (1);
  1937.         immediate_quit = 0;
  1938.         continue;
  1939.           }
  1940. #endif
  1941.         report_file_error ("writing to process", Fcons (proc, Qnil));
  1942.       }
  1943.     buf += rv;
  1944.     len -= rv;
  1945.       }
  1946.   else
  1947.     {
  1948.       XPROCESS (proc)->raw_status_low = Qnil;
  1949.       XPROCESS (proc)->raw_status_high = Qnil;
  1950.       XPROCESS (proc)->status = Fcons (Qexit, Fcons (make_number (256), Qnil));
  1951.       XSETINT (XPROCESS (proc)->tick, ++process_tick);
  1952.       deactivate_process (proc);
  1953.       error ("SIGPIPE raised on process %s; closed it", procname);
  1954.     }
  1955. }
  1956.  
  1957. DEFUN ("process-send-region", Fprocess_send_region, Sprocess_send_region,
  1958.   3, 3, 0,
  1959.   "Send current contents of region as input to PROCESS.\n\
  1960. PROCESS may be a process name.\n\
  1961. Called from program, takes three arguments, PROCESS, START and END.")
  1962.   (process, start, end)
  1963.      Lisp_Object process, start, end;
  1964. {
  1965.   Lisp_Object proc;
  1966.   int start1;
  1967.  
  1968.   proc = get_process (process);
  1969.   validate_region (&start, &end);
  1970.  
  1971.   if (XINT (start) < GPT && XINT (end) > GPT)
  1972.     move_gap (start);
  1973.  
  1974.   start1 = XINT (start);
  1975.   send_process (proc, &FETCH_CHAR (start1), XINT (end) - XINT (start));
  1976.  
  1977.   return Qnil;
  1978. }
  1979.  
  1980. DEFUN ("process-send-string", Fprocess_send_string, Sprocess_send_string,
  1981.   2, 2, 0,
  1982.   "Send PROCESS the contents of STRING as input.\n\
  1983. PROCESS may be a process name.")
  1984.   (process, string)
  1985.      Lisp_Object process, string;
  1986. {
  1987.   Lisp_Object proc;
  1988.   CHECK_STRING (string, 1);
  1989.   proc = get_process (process);
  1990.   send_process (proc, XSTRING (string)->data, XSTRING (string)->size);
  1991.   return Qnil;
  1992. }
  1993.  
  1994. /* send a signal number SIGNO to PROCESS.
  1995.    CURRENT_GROUP means send to the process group that currently owns
  1996.    the terminal being used to communicate with PROCESS.
  1997.    This is used for various commands in shell mode.
  1998.    If NOMSG is zero, insert signal-announcements into process's buffers
  1999.    right away.  */
  2000.  
  2001. process_send_signal (process, signo, current_group, nomsg)
  2002.      Lisp_Object process;
  2003.      int signo;
  2004.      Lisp_Object current_group;
  2005.      int nomsg;
  2006. {
  2007.   Lisp_Object proc;
  2008.   register struct Lisp_Process *p;
  2009.   int gid;
  2010.  
  2011.   proc = get_process (process);
  2012.   p = XPROCESS (proc);
  2013.  
  2014.   if (!EQ (p->childp, Qt))
  2015.     error ("Process %s is not a subprocess",
  2016.        XSTRING (p->name)->data);
  2017.   if (!XFASTINT (p->infd))
  2018.     error ("Process %s is not active",
  2019.        XSTRING (p->name)->data);
  2020.  
  2021.   if (NULL (p->pty_flag))
  2022.     current_group = Qnil;
  2023.  
  2024. #ifdef TIOCGPGRP        /* Not sure about this! (fnf) */
  2025.   /* If we are using pgrps, get a pgrp number and make it negative.  */
  2026.   if (!NULL (current_group))
  2027.     {
  2028.       ioctl (XFASTINT (p->infd), TIOCGPGRP, &gid);
  2029.       gid = - gid;
  2030.     }
  2031.   else
  2032.     gid = - XFASTINT (p->pid);
  2033. #else /* not using pgrps */
  2034.   /* Can't select pgrps on this system, so we know that
  2035.      the child itself heads the pgrp.  */
  2036.   gid = - XFASTINT (p->pid);
  2037. #endif /* not using pgrps */
  2038.  
  2039.   switch (signo)
  2040.     {
  2041. #ifdef SIGCONT
  2042.     case SIGCONT:
  2043.       p->raw_status_low = Qnil;
  2044.       p->raw_status_high = Qnil;
  2045.       p->status = Qrun;
  2046.       XSETINT (p->tick, ++process_tick);
  2047.       if (!nomsg)
  2048.     status_notify ();
  2049.       break;
  2050. #endif
  2051.     case SIGINT:
  2052.     case SIGQUIT:
  2053.     case SIGKILL:
  2054.       flush_pending_output (XFASTINT (p->infd));
  2055.       break;
  2056.     }
  2057.   /* gid may be a pid, or minus a pgrp's number */
  2058. #ifdef TIOCSIGSEND
  2059.   if (!NULL (current_group))
  2060.     ioctl (XFASTINT (p->infd), TIOCSIGSEND, signo);
  2061.   else
  2062.     {
  2063.       gid = - XFASTINT (p->pid);
  2064.       kill (gid, signo);
  2065.     }
  2066. #else /* no TIOCSIGSEND */
  2067. #ifdef BSD
  2068.   /* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
  2069.      Must do that differently.  */
  2070.   killpg (-gid, signo);
  2071. #else /* Not BSD.  */
  2072.   kill (gid, signo);
  2073. #endif /* Not BSD.  */
  2074. #endif /* no TIOCSIGSEND */
  2075. }
  2076.  
  2077. DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0,
  2078.   "Interrupt process PROCESS.  May be process or name of one.\n\
  2079. Nil or no arg means current buffer's process.\n\
  2080. Second arg CURRENT-GROUP non-nil means send signal to\n\
  2081. the current process-group of the process's controlling terminal\n\
  2082. rather than to the process's own process group.\n\
  2083. If the process is a shell, this means interrupt current subjob\n\
  2084. rather than the shell.")
  2085.   (process, current_group)
  2086.      Lisp_Object process, current_group;
  2087. {
  2088.   process_send_signal (process, SIGINT, current_group, 0);
  2089.   return process;
  2090. }
  2091.  
  2092. DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0,
  2093.   "Kill process PROCESS.  May be process or name of one.\n\
  2094. See function interrupt-process for more details on usage.")
  2095.   (process, current_group)
  2096.      Lisp_Object process, current_group;
  2097. {
  2098.   process_send_signal (process, SIGKILL, current_group, 0);
  2099.   return process;
  2100. }
  2101.  
  2102. DEFUN ("quit-process", Fquit_process, Squit_process, 0, 2, 0,
  2103.   "Send QUIT signal to process PROCESS.  May be process or name of one.\n\
  2104. See function interrupt-process for more details on usage.")
  2105.   (process, current_group)
  2106.      Lisp_Object process, current_group;
  2107. {
  2108.   process_send_signal (process, SIGQUIT, current_group, 0);
  2109.   return process;
  2110. }
  2111.  
  2112. DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0,
  2113.   "Stop process PROCESS.  May be process or name of one.\n\
  2114. See function interrupt-process for more details on usage.")
  2115.   (process, current_group)
  2116.      Lisp_Object process, current_group;
  2117. {
  2118. #ifndef SIGTSTP
  2119.   error ("no SIGTSTP support");
  2120. #else
  2121.   process_send_signal (process, SIGTSTP, current_group, 0);
  2122. #endif
  2123.   return process;
  2124. }
  2125.  
  2126. DEFUN ("continue-process", Fcontinue_process, Scontinue_process, 0, 2, 0,
  2127.   "Continue process PROCESS.  May be process or name of one.\n\
  2128. See function interrupt-process for more details on usage.")
  2129.   (process, current_group)
  2130.      Lisp_Object process, current_group;
  2131. {
  2132. #ifdef SIGCONT
  2133.     process_send_signal (process, SIGCONT, current_group, 0);
  2134. #else
  2135.     error ("no SIGCONT support");
  2136. #endif
  2137.   return process;
  2138. }
  2139.  
  2140. DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
  2141.   "Make PROCESS see end-of-file in its input.\n\
  2142. Eof comes after any text already sent to it.\n\
  2143. nil or no arg means current buffer's process.")
  2144.   (process)
  2145.      Lisp_Object process;
  2146. {
  2147.   Lisp_Object proc;
  2148.  
  2149.   proc = get_process (process);
  2150.   /* Sending a zero-length record is supposed to mean eof
  2151.      when TIOCREMOTE is turned on.  */
  2152. #ifdef DID_REMOTE
  2153.   {
  2154.     char buf[1];
  2155.     write (XFASTINT (XPROCESS (proc)->outfd), buf, 0);
  2156.   }
  2157. #else /* did not do TOICREMOTE */
  2158.   send_process (proc, "\004", 1);
  2159. #endif /* did not do TOICREMOTE */
  2160.   return process;
  2161. }
  2162.  
  2163. /* Kill all processes associated with `buffer'.
  2164.  If `buffer' is nil, kill all processes  */
  2165.  
  2166. kill_buffer_processes (buffer)
  2167.      Lisp_Object buffer;
  2168. {
  2169.   Lisp_Object tail, proc;
  2170.  
  2171.   for (tail = Vprocess_alist; XGCTYPE (tail) == Lisp_Cons;
  2172.        tail = XCONS (tail)->cdr)
  2173.     {
  2174.       proc = XCONS (XCONS (tail)->car)->cdr;
  2175.       if (XGCTYPE (proc) == Lisp_Process
  2176.       && (NULL (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
  2177.     {
  2178.       if (NETCONN_P (proc))
  2179.         deactivate_process (proc);
  2180.       else if (XFASTINT (XPROCESS (proc)->infd))
  2181.         process_send_signal (proc, SIGHUP, Qnil, 1);
  2182.     }
  2183.     }
  2184. }
  2185.  
  2186. /* On receipt of a signal that a child status has changed,
  2187.  loop asking about children with changed statuses until
  2188.  the system says there are no more.
  2189.    All we do is change the status;
  2190.  we do not run sentinels or print notifications.
  2191.  That is saved for the next time keyboard input is done,
  2192.  in order to avoid timing errors.  */
  2193.  
  2194. /** WARNING: this can be called during garbage collection.
  2195.  Therefore, it must not be fooled by the presence of mark bits in
  2196.  Lisp objects.  */
  2197.  
  2198. /** USG WARNING:  Although it is not obvious from the documentation
  2199.  in signal(2), on a USG system the SIGCLD handler MUST NOT call
  2200.  signal() before executing at least one wait(), otherwise the handler
  2201.  will be called again, resulting in an infinite loop.  The relevant
  2202.  portion of the documentation reads "SIGCLD signals will be queued
  2203.  and the signal-catching function will be continually reentered until
  2204.  the queue is empty".  Invoking signal() causes the kernel to reexamine
  2205.  the SIGCLD queue.   Fred Fish, UniSoft Systems Inc. */
  2206.  
  2207. sigchld_handler (signo)
  2208.      int signo;
  2209. {
  2210.   int old_errno = errno;
  2211.   Lisp_Object proc;
  2212.   register struct Lisp_Process *p;
  2213.  
  2214. #ifdef BSD4_1
  2215.   extern int synch_process_pid;
  2216.   extern int sigheld;
  2217.   sigheld |= sigbit (SIGCHLD);
  2218. #endif
  2219.  
  2220.   while (1)
  2221.     {
  2222.       register int pid;
  2223.       WAITTYPE w;
  2224.       Lisp_Object tail;
  2225.  
  2226. #ifdef WNOHANG
  2227. #ifndef WUNTRACED
  2228. #define WUNTRACED 0
  2229. #endif /* no WUNTRACED */
  2230.       /* Keep trying to get a status until we get a definitive result.  */
  2231.       do 
  2232.     {
  2233.       errno = 0;
  2234.       pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
  2235.     }
  2236.       while (pid <= 0 && errno == EINTR);
  2237.  
  2238.       if (pid <= 0)
  2239.     {
  2240.       /* A real failure.  We have done all our job, so return.  */
  2241.  
  2242.       /* USG systems forget handlers when they are used;
  2243.          must reestablish each time */
  2244. #ifdef USG
  2245.       signal (signo, sigchld_handler);   /* WARNING - must come after wait3() */
  2246. #endif
  2247. #ifdef  BSD4_1
  2248.       sigheld &= ~sigbit (SIGCHLD);
  2249.       sigrelse (SIGCHLD);
  2250. #endif
  2251.       errno = old_errno;
  2252.       return;
  2253.     }
  2254. #else
  2255.       pid = wait (&w);
  2256. #endif /* no WNOHANG */
  2257.  
  2258. #ifdef BSD4_1
  2259.       if (synch_process_pid == pid)
  2260.     synch_process_pid = 0;         /* Zero it to show process has died. */
  2261. #endif
  2262.  
  2263.       /* Find the process that signaled us, and record its status.  */
  2264.  
  2265.       p = 0;
  2266.       for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
  2267.     {
  2268.       proc = XCONS (XCONS (tail)->car)->cdr;
  2269.       p = XPROCESS (proc);
  2270.       if (EQ (p->childp, Qt) && XFASTINT (p->pid) == pid)
  2271.         break;
  2272.       p = 0;
  2273.     }
  2274.  
  2275.       /* If we don't recognize the pid number,
  2276.      look for a process being created.  */
  2277.  
  2278.       if (p == 0)
  2279.     for (tail = Vprocess_alist; XSYMBOL (tail) != XSYMBOL (Qnil); tail = XCONS (tail)->cdr)
  2280.       {
  2281.         proc = XCONS (XCONS (tail)->car)->cdr;
  2282.         p = XPROCESS (proc);
  2283.         if (XINT (p->pid) == -1)
  2284.           break;
  2285.         p = 0;
  2286.       }
  2287.  
  2288.       /* Change the status of the process that was found.  */
  2289.  
  2290.       if (p != 0)
  2291.     {
  2292.       union { int i; WAITTYPE wt; } u;
  2293.  
  2294.       XSETINT (p->tick, ++process_tick);
  2295.       u.wt = w;
  2296.       XFASTINT (p->raw_status_low) = u.i & 0xffff;
  2297.       XFASTINT (p->raw_status_high) = u.i >> 16;
  2298.  
  2299.       /* If process has terminated, stop waiting for its output.  */
  2300.       if (WIFSIGNALED (w) || WIFEXITED (w))
  2301.         if (p->infd)
  2302.           FD_CLR (p->infd, &input_wait_mask);
  2303.     }
  2304.  
  2305.       /* On some systems, we must return right away.
  2306.      If any more processes want to signal us, we will
  2307.      get another signal.
  2308.      Otherwise (on systems that have WNOHANG), loop around
  2309.      to use up all the processes that have something to tell us.  */
  2310. #if defined (USG) && ! (defined (HPUX) && defined (WNOHANG))
  2311. #ifdef USG
  2312.       signal (signo, sigchld_handler);
  2313. #endif
  2314.       errno = old_errno;
  2315.       return;
  2316. #endif /* USG, but not HPUX with WNOHANG */
  2317.     }
  2318. }
  2319.  
  2320. /* Report all recent events of a change in process status
  2321.    (either run the sentinel or output a message).
  2322.    This is done while Emacs is waiting for keyboard input.  */
  2323.  
  2324. status_notify ()
  2325. {
  2326.   register Lisp_Object tail, proc, buffer;
  2327.  
  2328.   for (tail = Vprocess_alist; !NULL (tail); tail = Fcdr (tail))
  2329.     {
  2330.       Lisp_Object symbol, msg;
  2331.       register struct Lisp_Process *p;
  2332.  
  2333.       proc = Fcdr (Fcar (tail));
  2334.       p = XPROCESS (proc);
  2335.  
  2336.       if (XINT (p->tick) != XINT (p->update_tick))
  2337.     {
  2338.       struct gcpro gcpro1;
  2339.  
  2340.       XSETINT (p->update_tick, XINT (p->tick));
  2341.  
  2342.       /* If process is still active, read any output that remains.  */
  2343.       if (XFASTINT (p->infd))
  2344.         while (read_process_output (proc, XFASTINT (p->infd)) > 0);
  2345.  
  2346.       buffer = p->buffer;
  2347.  
  2348.       /* Get the text to use for the message.  */
  2349.       if (!NULL (p->raw_status_low))
  2350.         update_status (p);
  2351.       msg = status_message (p->status);
  2352.       GCPRO1 (msg);
  2353.  
  2354.       /* If process is terminated, deactivate it or delete it.  */
  2355.       symbol = p->status;
  2356.       if (XTYPE (p->status) == Lisp_Cons)
  2357.         symbol = XCONS (p->status)->car;
  2358.  
  2359.       if (EQ (symbol, Qsignal) || EQ (symbol, Qexit)
  2360.           || EQ (symbol, Qclosed))
  2361.         {
  2362.           if (delete_exited_processes)
  2363.         remove_process (proc);
  2364.           else
  2365.         deactivate_process (proc);
  2366.         }
  2367.       UNGCPRO;
  2368.  
  2369.       /* Now output the message suitably.  */
  2370.       if (!NULL (p->sentinel))
  2371.         exec_sentinel (proc, msg);
  2372.       /* Don't bother with a message in the buffer
  2373.          when a process becomes runnable.  */
  2374.       else if (!EQ (symbol, Qrun) && !NULL (buffer))
  2375.         {
  2376.           Lisp_Object ro = XBUFFER (buffer)->read_only;
  2377.           Lisp_Object tem;
  2378.           struct buffer *old = current_buffer;
  2379.           int opoint;
  2380.  
  2381.           /* Avoid error if buffer is deleted
  2382.          (probably that's why the process is dead, too) */
  2383.           if (NULL (XBUFFER (buffer)->name))
  2384.         continue;
  2385.           Fset_buffer (buffer);
  2386.           opoint = point;
  2387.           /* Insert new output into buffer
  2388.          at the current end-of-output marker,
  2389.          thus preserving logical ordering of input and output.  */
  2390.           if (XMARKER (p->mark)->buffer)
  2391.         SET_PT (marker_position (p->mark));
  2392.           else
  2393.         SET_PT (ZV);
  2394.           if (point <= opoint)
  2395.         opoint += XSTRING (msg)->size + XSTRING (p->name)->size + 10;
  2396.  
  2397.           tem = current_buffer->read_only;
  2398.           current_buffer->read_only = Qnil;
  2399.           GCPRO1 (msg);
  2400.           InsStr ("\nProcess ");
  2401.           Finsert (1, &p->name);
  2402.           InsStr (" ");
  2403.           Finsert (1, &msg);
  2404.           current_buffer->read_only = tem;
  2405.           Fset_marker (p->mark, make_number (point), p->buffer);
  2406.           UNGCPRO;
  2407.  
  2408.           SET_PT (opoint);
  2409.           set_buffer_internal (old);
  2410.         }
  2411.     }
  2412.     } /* end for */
  2413.  
  2414.   update_mode_lines++;  /* in case buffers use %s in mode-line-format */
  2415.   redisplay_preserve_echo_area ();
  2416.  
  2417.   update_tick = process_tick;
  2418. }
  2419.  
  2420. exec_sentinel (proc, reason)
  2421.      Lisp_Object proc, reason;
  2422. {
  2423.   Lisp_Object sentinel;
  2424.   register struct Lisp_Process *p = XPROCESS (proc);
  2425.   int count = specpdl_ptr - specpdl;
  2426.  
  2427.   sentinel = p->sentinel;
  2428.   if (NULL (sentinel))
  2429.     return;
  2430.  
  2431.   p->sentinel = Qnil;
  2432.   specbind (Qinhibit_quit, Qt);
  2433.   this_filter = sentinel;
  2434.   filter_process = proc;
  2435.   filter_string = reason;
  2436.   call2 (this_filter, filter_process, filter_string);
  2437. /*   internal_condition_case (run_filter, Qerror, Fidentity);  */
  2438.   unbind_to (count);
  2439.   p->sentinel = sentinel;
  2440. }
  2441.  
  2442. init_process ()
  2443. {
  2444.   register int i;
  2445.  
  2446. #ifdef SIGCHLD
  2447. #ifndef CANNOT_DUMP
  2448.   if (! noninteractive || initialized)
  2449. #endif
  2450.     signal (SIGCHLD, sigchld_handler);
  2451. #endif
  2452.  
  2453.   FD_ZERO (&input_wait_mask);
  2454.   FD_SET (0, &input_wait_mask);
  2455.   Vprocess_alist = Qnil;
  2456.   for (i = 0; i < MAXDESC; i++)
  2457.     {
  2458.       chan_process[i] = Qnil;
  2459.       proc_buffered_char[i] = -1;
  2460.     }
  2461. }
  2462.  
  2463. syms_of_process ()
  2464. {
  2465.   Qprocessp = intern ("processp");
  2466.   staticpro (&Qprocessp);
  2467.   Qrun = intern ("run");
  2468.   staticpro (&Qrun);
  2469.   Qstop = intern ("stop");
  2470.   staticpro (&Qstop);
  2471.   Qsignal = intern ("signal");
  2472.   staticpro (&Qsignal);
  2473.   Qexit = intern ("exit");
  2474.   staticpro (&Qexit);
  2475.   Qopen = intern ("open");
  2476.   staticpro (&Qopen);
  2477.   Qclosed = intern ("closed");
  2478.   staticpro (&Qclosed);
  2479.  
  2480.   staticpro (&Vprocess_alist);
  2481.  
  2482.   DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
  2483.     "*Non-nil means delete processes immediately when they exit.\n\
  2484. nil means don't delete them until `list-processes' is run.");
  2485.  
  2486.   delete_exited_processes = 1;
  2487.  
  2488.   DEFVAR_LISP ("process-connection-type", &Vprocess_connection_type,
  2489.     "Control type of device used to communicate with subprocesses.\n\
  2490. Values are nil to use a pipe, t for a pty (or pipe if ptys not supported).\n\
  2491. Value takes effect when `start-process' is called.");
  2492.   Vprocess_connection_type = Qt;
  2493.  
  2494.   defsubr (&Sprocessp);
  2495.   defsubr (&Sget_process);
  2496.   defsubr (&Sget_buffer_process);
  2497.   defsubr (&Sdelete_process);
  2498.   defsubr (&Sprocess_status);
  2499.   defsubr (&Sprocess_exit_status);
  2500.   defsubr (&Sprocess_id);
  2501.   defsubr (&Sprocess_name);
  2502.   defsubr (&Sprocess_command);
  2503.   defsubr (&Sset_process_buffer);
  2504.   defsubr (&Sprocess_buffer);
  2505.   defsubr (&Sprocess_mark);
  2506.   defsubr (&Sset_process_filter);
  2507.   defsubr (&Sprocess_filter);
  2508.   defsubr (&Sset_process_sentinel);
  2509.   defsubr (&Sprocess_sentinel);
  2510.   defsubr (&Sprocess_kill_without_query);
  2511.   defsubr (&Slist_processes);
  2512.   defsubr (&Sprocess_list);
  2513.   defsubr (&Sstart_process);
  2514. #ifdef HAVE_SOCKETS
  2515.   defsubr (&Sopen_network_stream);
  2516. #endif /* HAVE_SOCKETS */
  2517.   defsubr (&Saccept_process_output);
  2518.   defsubr (&Sprocess_send_region);
  2519.   defsubr (&Sprocess_send_string);
  2520.   defsubr (&Sinterrupt_process);
  2521.   defsubr (&Skill_process);
  2522.   defsubr (&Squit_process);
  2523.   defsubr (&Sstop_process);
  2524.   defsubr (&Scontinue_process);
  2525.   defsubr (&Sprocess_send_eof);
  2526.   defsubr (&Swaiting_for_user_input_p);
  2527. }
  2528.  
  2529. #endif subprocesses
  2530.